Skip to content

Commit a9d0a69

Browse files
committed
Fixed Travis build errors
1 parent cce28ab commit a9d0a69

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ before_script:
2828

2929
script:
3030
- make -C viewer/build
31-
- make -C client-api/Octave
3231
- if [ $TRAVIS_OS_NAME == linux ]; then make -C client-api/Octave install; fi
3332

3433
after_success:

client-api/Octave/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ $(RELEASE_TARBALL): ../../.git/index
4343
@# The C++ API must be bundled
4444
@(cd ../C++/; git archive --output="$(shell pwd)/$(PACKAGE)-deps.tar" --prefix="$(PACKAGE)-$(VERSION)/" HEAD src)
4545
@tar --concatenate --file="$(PACKAGE)-$(VERSION).tar" "$(PACKAGE)-deps.tar"
46-
@$(GZIP) --best -f -k "$(PACKAGE)-$(VERSION).tar"
47-
@rm "$(PACKAGE)-$(VERSION).tar" "$(PACKAGE)-deps.tar"
46+
@$(GZIP) --best -f "$(PACKAGE)-$(VERSION).tar"
47+
@rm -f "$(PACKAGE)-$(VERSION).tar" "$(PACKAGE)-deps.tar"
4848

4949
##
5050
## Local Install Process

0 commit comments

Comments
 (0)