16 lines
358 B
Bash
16 lines
358 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# (c)2006, Laurence Withers. Released under the GNU GPL. See file
|
||
|
# COPYING for details.
|
||
|
#
|
||
|
|
||
|
if [ $# -ne 1 ]
|
||
|
then
|
||
|
echo "Updates an existing project to newer lw-build-system files."
|
||
|
echo "Usage: $0 path/to/project/root"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
|
||
|
# vim: expandtab:ts=4:sw=4
|