Skip to content

Commit 4383c9a

Browse files
authored
Merge pull request #186 from malcolndandaro/bugfix/install/error
Fix syntax error in install.sh (if closed with } instead of fi)
2 parents 844c7a5 + 80b619d commit 4383c9a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -856,10 +856,10 @@ save_version() {
856856
# Validate version format
857857
[[ "$ver" =~ (404|Not Found|error) ]] && ver="dev"
858858
echo "$ver" > "$INSTALL_DIR/version"
859-
if [ "$SCOPE" = "project" ]; then
859+
if [ "$SCOPE" = "project" ]; then
860860
mkdir -p ".ai-dev-kit"
861861
echo "$ver" > ".ai-dev-kit/version"
862-
}
862+
fi
863863
}
864864

865865
# Print summary

0 commit comments

Comments
 (0)