Skip to content

Commit

Permalink
#147: Bump a new version
Browse files Browse the repository at this point in the history
  • Loading branch information
BR0kEN- committed Sep 11, 2018
1 parent e140314 commit fc0cf26
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.4
2 changes: 1 addition & 1 deletion scripts/roles/cikit-ci/files/tasks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ declare -rA VARIABLES=(

for VARIABLE in "${!VARIABLES[@]}"; do
if [ -z ${!VARIABLE+x} ]; then
echo "The \"$VARIABLE\" variable is missing! It's value must be ${VARIABLES[$VARIABLE]}."
echo "The \"$VARIABLE\" variable is missing! Its value must be ${VARIABLES[$VARIABLE]}."
exit 101
fi

Expand Down
4 changes: 2 additions & 2 deletions scripts/tasks/migrations/1.0.3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
- name: Seeking CIKit projects
shell: |-
vagrant global-status | awk '{print $5}' | while read -r PROJECT_PATH; do
if [ -d "${PROJECT_PATH}/.cikit/" ]; then
echo ${PROJECT_PATH}
if [ -d "$PROJECT_PATH/.cikit" ]; then
echo "$PROJECT_PATH"
fi
done
register: cikit_projects_list
Expand Down

0 comments on commit fc0cf26

Please sign in to comment.