Skip to content

Commit

Permalink
Specify package directory when building package with docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
jondegenhardt committed Nov 5, 2017
1 parent 924fa00 commit 0fc1e79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ before_deploy:
USE_VERSION="$TRAVIS_TAG";
fi
- if [[ "$DOCKERSPECIAL" == "1" ]]; then
docker run --rm -ti -v $(pwd):/src dlanguage/ldc:1.5.0 make package DCOMPILER=$DC OS=$TRAVIS_OS_NAME APP_VERSION=$USE_VERSION LDC_BUILD_RUNTIME=1 DFLAGS=-static;
docker run --rm -ti -v $(pwd):/src dlanguage/ldc:1.5.0 make package PKG_ROOT_DIR=tsv-utils-dlang DCOMPILER=$DC OS=$TRAVIS_OS_NAME APP_VERSION=$USE_VERSION LDC_BUILD_RUNTIME=1 DFLAGS=-static;
sudo chown -R $UID:$GID $(pwd);
else
make package DCOMPILER=$DC OS=$TRAVIS_OS_NAME APP_VERSION=$USE_VERSION LDC_BUILD_RUNTIME=1;
Expand Down
2 changes: 1 addition & 1 deletion common/src/tsvutils_version.d
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
enum string tsvutilsVersion = "v1.1.15-beta2";
enum string tsvutilsVersion = "v1.1.15-beta3";

string tsvutilsVersionNotice (string toolName)
{
Expand Down

0 comments on commit 0fc1e79

Please sign in to comment.