Files
ubuntu-sdk-ide_orig/apply-patches.sh
2016-09-22 18:11:03 +02:00

13 lines
139 B
Bash
Executable File

#!/bin/bash
env QUILT_PATCHES=debian/patches quilt push -a
RESULT=$?
if [ $RESULT -eq 0 -o $RESULT -eq 2 ]; then
exit 0
fi
exit 1