Skip to content

Commit 251b8d4

Browse files
committed
fix: fixed linting error
1 parent db5f578 commit 251b8d4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/clone.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#!/bin/sh
2-
set -eux
1+
#!/bin/bash
2+
set -euo pipefail
33

44
GIT_TREE="$(basename "${APP_GH_REF}")"
55
git clone "${UPSTREAM_URL}" .
66
git checkout "${GIT_TREE}"
77
if [ "${APP_GH_ADD_SHA}" = "true" ]; then
8-
git describe --tags --long > config/custom-version.txt
8+
git describe --tags --long >config/custom-version.txt
99
fi
1010
rm -rf .git

0 commit comments

Comments
 (0)