Skip to content

Commit abd2757

Browse files
committed
pack.sh fix
1 parent 705b96e commit abd2757

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ commands:
3232
chown `whoami` ~/workspace
3333
- run:
3434
name: Build
35-
command: |
36-
make -C opt all SHOW=1
37-
# make -C opt pack SHOW=1
38-
make -C opt pack BRANCH="${CIRCLE_BRANCH//[^A-Za-z0-9._-]/_}" INTO=~/workspace/packages SHOW=1
35+
command: make -C opt all SHOW=1
3936
- run:
4037
name: Test
4138
command: |

opt/pack.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ pack_ramp
142142
if [[ ! -z $INTO ]]; then
143143
mkdir -p $INTO
144144
cd $INTO
145-
mkdir release branch
145+
mkdir -p release branch
146146

147147
for f in $RELEASE_ARTIFACTS; do
148148
[[ -f $BINDIR/$f ]] && cp $BINDIR/$f release/

0 commit comments

Comments
 (0)