We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a292d4d commit b9e98c2Copy full SHA for b9e98c2
make_tarball.sh
@@ -7,12 +7,12 @@ cd ..
7
rm -f openEMS-$GITREV.tar
8
rm -f openEMS-$GITREV.tar.bz2
9
10
-git archive --format=tar HEAD -o openEMS-$GITREV.tar
+git archive --format=tar --prefix=openEMS/ HEAD -o openEMS-$GITREV.tar
11
12
for mod in fparser CSXCAD QCSXCAD AppCSXCAD openEMS CTB hyp2mat; do
13
cd $mod || exit 1
14
tmpfn=`mktemp --suffix=tar`
15
- git archive --format=tar --prefix=$mod/ HEAD -o $tmpfn
+ git archive --format=tar --prefix=openEMS/$mod/ HEAD -o $tmpfn
16
cd ..
17
tar --concatenate --file=openEMS-$GITREV.tar $tmpfn
18
rm -f $tmpfn
0 commit comments