We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9217f52 commit d714355Copy full SHA for d714355
1 file changed
scripts/build_app.sh
@@ -80,8 +80,14 @@ if [ "$BUILD_WITH_GUIX" -eq 1 ]; then
80
echo "Error: -g (Guix build) is only supported with -p linux"
81
exit 1
82
fi
83
+ GUIX_BUILD="${APP_PROJECT_ROOT_DIR}/contrib/guix/guix-build"
84
+ if [ ! -x "$GUIX_BUILD" ]; then
85
+ echo "guix-build not found at: $GUIX_BUILD"
86
+ echo "Ensure contrib/guix/ exists (e.g. feat/guix branch)."
87
+ exit 1
88
+ fi
89
export SOURCE_DIR="$APP_PROJECT_ROOT_DIR"
- exec "${APP_PROJECT_ROOT_DIR}/contrib/guix/guix-build" \
90
+ exec "$GUIX_BUILD" \
91
--app "$APP_NAMED_ID" \
92
--version "$APP_VERSION_STRING" \
93
--build-number "$APP_BUILD_NUMBER"
0 commit comments