Skip to content

Commit

Permalink
fix: typo in template (#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
remirobichet committed Mar 23, 2022
1 parent 6c51b3d commit d1b2060
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BuildScriptGenerator/Node/NodeBashBuildSnippet.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ COMMAND_MANIFEST_FILE="{{ NodeBuildCommandsFile }}"

echo "Removing existing manifest file"
rm -f "$COMMAND_MANIFEST_FILE"
echo "Creating directory for command manifest file if it doesnot exist"
echo "Creating directory for command manifest file if it does not exist"
mkdir -p "$(dirname "$COMMAND_MANIFEST_FILE")"

{{ if NodeBuildProperties != empty }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo "{{ NoteBookBuildCommandsFileName }}"
COMMAND_MANIFEST_FILE="{{ NoteBookBuildCommandsFileName }}"
{{ end }}

echo "Creating directory for command manifest file if it doesnot exist"
echo "Creating directory for command manifest file if it does not exist"
mkdir -p "$(dirname "$COMMAND_MANIFEST_FILE")"
echo "Removing existing manifest file"
rm -f "$COMMAND_MANIFEST_FILE"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PIP_CACHE_DIR=/usr/local/share/pip-cache
COMMAND_MANIFEST_FILE="{{ PythonBuildCommandsFileName }}"
{{ end }}

echo "Creating directory for command manifest file if it doesnot exist"
echo "Creating directory for command manifest file if it does not exist"
mkdir -p "$(dirname "$COMMAND_MANIFEST_FILE")"
echo "Removing existing manifest file"
rm -f "$COMMAND_MANIFEST_FILE"
Expand Down

0 comments on commit d1b2060

Please sign in to comment.