Skip to content

Commit

Permalink
use absolute path in deb7 packaging as well
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Aug 29, 2017
1 parent 36facc8 commit 7b47ed8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ build_deb_7_minus () {
fi

# move packages to dist directory
rm -rf ../../../${dist_directory}
mkdir -p ../../../${dist_directory}
mv -f deb_dist/*.deb ../../../${dist_directory}
rm -rf ${dist_directory}
mkdir -p ${dist_directory}
mv -f deb_dist/*.deb ${dist_directory}

# back to the root
cd ../../..
Expand Down

0 comments on commit 7b47ed8

Please sign in to comment.