From 464ad3d3956daa599c5821d40f70454ecc2cd943 Mon Sep 17 00:00:00 2001 From: rschoene <rene.schoene@tu-dresden.de> Date: Mon, 6 Aug 2018 14:08:36 +0200 Subject: [PATCH] Using tar instead of aunpack. --- cp-to-solution.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cp-to-solution.sh b/cp-to-solution.sh index dd7fc5e..e8541d3 100755 --- a/cp-to-solution.sh +++ b/cp-to-solution.sh @@ -44,7 +44,7 @@ function copy_to_ttc() {( # ensure directory exists and unpack into it mkdir -p ../ttc2018liveContest/solutions/$name - aunpack -q solve/build/distributions/solve-1.0-SNAPSHOT.tar solve-1.0-SNAPSHOT/bin/ solve-1.0-SNAPSHOT/lib/ -X ../ttc2018liveContest/solutions/$name/ + tar -xf solve/build/distributions/solve-1.0-SNAPSHOT.tar -C ../ttc2018liveContest/solutions/$name/ solve-1.0-SNAPSHOT/bin/ solve-1.0-SNAPSHOT/lib/ # cp solution.ini cp solution.ini ../ttc2018liveContest/solutions/$name/ -- GitLab