Skip to content

Commit

Permalink
build: added --enforce-lockfile to development helper script `build…
Browse files Browse the repository at this point in the history
…Archive`
  • Loading branch information
gkc committed Jan 3, 2025
1 parent bb8cbcb commit c02de2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dart/sshnoports/buildArchive
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echo
rm -rf build/sshnp build/sshnp.zip build/sshnp.tgz
mkdir -p build/sshnp/web/admin

dart pub get || exit 1
dart pub get --enforce-lockfile || exit 1

echo "Building core binaries"
echo "Compiling at_activate"; dart compile exe --verbosity error bin/activate_cli.dart -o build/sshnp/at_activate &
Expand All @@ -33,7 +33,7 @@ echo "$(date) : Compilation complete"

echo "Building admin API and webapp - BETA";
pushd ../../../apps/admin/admin_api || exit 1
dart pub get || exit 1
dart pub get --enforce-lockfile || exit 1
echo "Compiling admin_api"; dart compile exe --verbosity error bin/np_admin.dart -o "${packageDir}/build/sshnp/np_admin" || exit 1
wait
cd ../webapp || exit 1
Expand Down

0 comments on commit c02de2e

Please sign in to comment.