valentina/scripts/obs_debian.sh
Roman Telezhynskyi f4595dc319 Preparetion for releasing new test build.
--HG--
branch : develop
2016-05-20 15:27:40 +03:00

20 lines
593 B
Bash
Executable file

#!/bin/sh
# Prepare files from dist/debian/* for openSUSE Build Service.
# Use if need to update files.
# Please, run this script from folder <root_folder>/scripts.
# usage:
# $ ./obs_debian.sh
# Note. For stable version enough create an archive debian.tar.gz with folder debian inside and download it.
ORIGDEBIAN=../dist/debian/ # Path to original files
OBSDEBIAN=../dist/OBS_debian # Path to prepared files
FILES=`find $ORIGDEBIAN -type f | xargs ls -1`
for file in $FILES
do
basename=${file##*/} # remove the path from a path-string
cp -v -f $file $OBSDEBIAN/debian.${basename}
done