From c85849ad7faae048279d8d6efe679be316be4723 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 5 Aug 2019 13:49:31 +0100 Subject: [PATCH] build: fix cp -ral call --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build b/build index 51a79bc..73f4353 100755 --- a/build +++ b/build @@ -74,7 +74,7 @@ task_build() { task_package() { task_begin "Packaging as .deb"; - execute cp -ral Release PolyFeed/bin/polyfeed; + execute cp -ral PolyFeed/bin/Release PolyFeed/bin/polyfeed; version="$(awk '/version = / { print($3) }' PolyFeed.sln | tr -d '\n\r')-$(date +"%Y-%m-%dT%H:%M")+$(git rev-parse HEAD | head -c7)"; fpm -s dir -t deb -n polyfeed -v "${version}" --license MPL-2.0 \ --architecture all --maintainer "Starbeamrainbowlabs " \