Skip to content

Commit 4b715d6

Browse files
committed
clean
1 parent 8631119 commit 4b715d6

10 files changed

Lines changed: 12 additions & 2 deletions

File tree

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

pkgs/roc/display

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
scripts/display.sh

pkgs/roc/hello

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
scripts/hello.sh

pkgs/roc/platforms/go/dynhost

0 Bytes
Binary file not shown.

pkgs/roc/platforms/go/linux-x64.rh

0 Bytes
Binary file not shown.

pkgs/roc/scripts/README.md

100644100755
File mode changed.

pkgs/roc/scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
# shellcheck disable=SC2086,SC2154
33
set -exuo pipefail
4-
4+
echo "$0 $*"
55
usage() {
66
echo "usage: $0 [--platform p] [--app a] [--static] [--skip-run]"
77
exit 1
@@ -48,7 +48,7 @@ if [[ $# -gt 1 ]]; then
4848
fi
4949
application=$1
5050
shift
51-
if [ "$#" -lt 2 ]; then
51+
if [ "$#" -lt 1 ]; then
5252
break
5353
fi
5454
platform=$1

pkgs/roc/scripts/display.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
# shellcheck disable=SC2086,SC2154
3+
set -exuo pipefail
4+
./build display "${@}"

pkgs/roc/scripts/hello.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
# shellcheck disable=SC2086,SC2154
3+
set -exuo pipefail
4+
./build hello "${@}"

0 commit comments

Comments
 (0)