Skip to content

Commit

Permalink
fix: run line tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gschrisstadler committed Apr 17, 2024
1 parent 01d8973 commit ee61269
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion web-build/snowflake-odbc/download-package
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
#ddev-generated

set -e
set -o errtrace
set -o errexit
set -o pipefail

if [ "$GOARCH" = "amd64" ]; then
ARCH="x86_64";
Expand Down
6 changes: 5 additions & 1 deletion web-build/snowflake-odbc/modify-dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
#ddev-generated

set -e
set -o errtrace
set -o errexit
set -o pipefail

PACKAGE_PATH="./snowflake-odbc"
TMP_PATH="/tmp"
Expand Down Expand Up @@ -53,6 +55,8 @@ remove_directives() {
echo "$LINE" >> "$TMP_FILE"
fi
done < "$FILE_PATH"

cat "$TMP_FILE" > "$FILE_PATH"
}

FILE_PATH="./web-build/Dockerfile"
Expand Down

0 comments on commit ee61269

Please sign in to comment.