Skip to content

Commit

Permalink
fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Jul 20, 2024
1 parent e34965b commit 86521c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build-apt.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

cd $(dirname $0); set -xe
cd "$(dirname $0)"; set -xe
# build

docker build $@ -t ghcr.io/theshellland/veilid-node:latest -f Dockerfile-apt .
2 changes: 1 addition & 1 deletion build-source.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

cd $(dirname $0); set -xe
cd "$(dirname $0)"; set -xe
# build

docker build $@ -t ghcr.io/theshellland/veilid-node:latest -f Dockerfile .
9 changes: 3 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/bin/bash
#!/bin/bash

# build

cd "$(dirname $0)"
set -xe
cd "$(dirname $0)"; set -xe
# build

source build-source.sh

0 comments on commit 86521c6

Please sign in to comment.