Skip to content

Commit

Permalink
slic3r#4635 Remove end-of-line spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofhyphens committed Dec 31, 2018
1 parent 95a0045 commit 53aac95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/linux/make_archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ if [[ -e "${dmgfile}" ]]; then
fi

echo "Creating new app folder: $appfolder"
mkdir -p $appfolder
mkdir -p $appfolder

echo "Copying resources..."
cp -rf $SLIC3R_DIR/var $resourcefolder/
cp -rf ${SLIC3R_DIR}/var $resourcefolder/

echo "Copying Slic3r..."
cp $SLIC3R_DIR/slic3r.pl $archivefolder/slic3r.pl
Expand Down Expand Up @@ -114,7 +114,7 @@ unzip -qq -o $WD/_tmp/test.par -d $WD/_tmp/
cp -rf $WD/_tmp/lib/* $archivefolder/local-lib/lib/perl5/
cp -rf $WD/_tmp/shlib $archivefolder/
rm -rf $WD/_tmp
for i in $(cat $WD/libpaths.txt | grep -v "^#" | awk -F# '{print $1}'); do
for i in $(cat $WD/libpaths.txt | grep -v "^#" | awk -F# '{print $1}'); do
install -v $i $archivefolder/bin
done

Expand Down

0 comments on commit 53aac95

Please sign in to comment.