/usr/share/sumo/tools/build/buildServiceUpload.sh is in sumo-tools 0.15.0~dfsg-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #!/bin/bash
PREFIX=$1
for f in $PREFIX/sumo/sumo-src-*.tar.gz; do
if test -e $PREFIX/sumo/configure -a $f -nt $PREFIX/sumo/configure; then
curl -n -X PUT -T $PREFIX/sumo/build/package/sumo.spec https://api.opensuse.org/source/home:behrisch/sumo_nightly/sumo.spec
fi
done
|