valentina/scripts/obs_debian.sh
Roman Telezhynskyi f167467c28 Use debian.* files for building unstable package for Debian.
--HG--
branch : develop
2016-02-20 18:44:08 +02:00

20 lines
603 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:
# $ ./generate_tool_cursor.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