We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f7a18 commit 2a43d1cCopy full SHA for 2a43d1c
pkg/src/build.sh
@@ -35,6 +35,12 @@ DOC_TARBALL_NAME=$(echo "${APP_NAME}-${APP_LONG_VERSION}-docs" | sed 's/ //g' |
35
# Get the github timestamp
36
git log -1 --format='%H %as' > web/commit_hash
37
38
+pushd web > /dev/null || exit
39
+ # Set the git:hash to empty as we already set the commit_hash
40
+ # this helps in building pgAdmin directly from tar ball without needing git.
41
+ npm pkg set "scripts.git:hash=exit 0"
42
+popd > /dev/null || exit
43
+
44
# Output basic details to show we're working
45
echo "Building tarballs for ${APP_NAME} version ${APP_LONG_VERSION}..."
46
0 commit comments