aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-03-02 09:28:24 +0100
committerlaforge <laforge@osmocom.org>2021-03-02 12:23:01 +0000
commit0949776344423e0372dc0715610600474bad5ed9 (patch)
tree52921250eb37e2653f47a45168e50c6a883d9be9 /scripts
parent9cda811f024ca57ce5ae64e6c64cd97c99b69229 (diff)
OBS: latest: fix code path to add new package
Fix osmo_obs_add_rpm_spec() to not assume to be in the $oscdir. This caused the following error when being called from osmocom-latest-packages.sh in the code path for adding a new package: ls: cannot access 'osmo-gbproxy_*.tar.*': No such file or directory Related: OS#5051 Change-Id: I467e332b69accfabba53332fdb9cd785991855fc
Diffstat (limited to 'scripts')
-rw-r--r--scripts/common-obs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/common-obs.sh b/scripts/common-obs.sh
index b6be98c..38719c8 100644
--- a/scripts/common-obs.sh
+++ b/scripts/common-obs.sh
@@ -139,7 +139,7 @@ osmo_obs_add_rpm_spec() {
fi
# Set source file
- tarball="$(ls -1 "${name}_"*".tar."*)"
+ tarball="$(cd "$oscdir" && ls -1 "${name}_"*".tar."*)"
sed -i "s/^Source:.*/Source: $tarball/g" "$spec"
osc add "$spec"