Skip to content

Commit beec76f

Browse files
committed
Use gzip instead of lzma
1 parent 02e6054 commit beec76f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tar xaf boost-libs.tar.xz
1111

1212
# Build nihstro
1313
git clone https://github.com/neobrain/nihstro.git
14-
cd nihstro && cmake -DBoost_USE_STATIC_LIBS=ON -DBOOST_LIBRARYDIR=$TRAVIS_BUILD_DIR/boost-libs . && make -j4 && cd -
14+
cd nihstro && cmake -DBoost_USE_STATIC_LIBS=ON -DBOOST_LIBRARYDIR=$TRAVIS_BUILD_DIR/boost-libs . && make -j4 nihstro-assemble && make -j4 nihstro-disassemble && cd -
1515

1616
# Build makerom (commit 80d3d99)
1717
git clone https://github.com/profi200/Project_CTR.git

deploy-prepare.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -ex
33

4-
export RELEASE_FILENAME=3ds-tools-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.xz
4+
export RELEASE_FILENAME=3ds-tools-$TRAVIS_OS_NAME-$TRAVIS_TAG.tar.gz
55
OUTDIR=${HOME}/3ds-tools
66
mkdir $OUTDIR
77

@@ -12,4 +12,4 @@ cp nihstro/nihstro-assemble $OUTDIR
1212
cp nihstro/nihstro-disassemble $OUTDIR
1313

1414
cd ${HOME}
15-
tar -cJvf $RELEASE_FILENAME 3ds-tools
15+
tar -czvf $RELEASE_FILENAME 3ds-tools

0 commit comments

Comments
 (0)