summaryrefslogtreecommitdiff
path: root/notepadpp/deploy-to-obs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'notepadpp/deploy-to-obs.sh')
-rwxr-xr-xnotepadpp/deploy-to-obs.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/notepadpp/deploy-to-obs.sh b/notepadpp/deploy-to-obs.sh
index 5c9863f..25a2879 100755
--- a/notepadpp/deploy-to-obs.sh
+++ b/notepadpp/deploy-to-obs.sh
@@ -18,6 +18,9 @@ tf="$( find . -maxdepth 1 -name 'notepadpp*orig*z' -printf '%T@ %f\n' | sort -n
tar -zxf "${tf}"
cd "$( tar -zvtf "${tf}" | awk '/^d/{print $NF}' | head -n1 )"
cp -pr "${gitdir}/debian" .
+pwd
+ls -altr
+ls -altrd ../*notepadpp*
debuild -us -uc # depends on dpkg-dev=1.19.7 and not 1.20.5 which is still broken in Ceres as of 2020-11-04
test $? -eq 0 || { "debuild failed. Cannot continue. Aborted." ; exit 1 ; }
cd "${devdir}"
bgstack15