summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/aux/opk.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/aux/opk.sh b/tests/aux/opk.sh
index a74ecfd..ec4c3cf 100644
--- a/tests/aux/opk.sh
+++ b/tests/aux/opk.sh
@@ -28,6 +28,9 @@ make_opks_and_changes()
local changes=
local file=
+ mkdir -p incoming/
+ cd incoming/
+
# Make packages.
for bin in ${bins}; do
mkdir -p "${bin}_${ver}_${arch}_${plat}/control/"
@@ -83,5 +86,7 @@ make_opks_and_changes()
"${sect}" "${file}" >>"${changes}"
done
- printf '%s' "${changes}"
+ cd ../
+
+ printf '%s' "incoming/${changes}"
}