diff options
-rwxr-xr-x | source3/script/installswat.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/script/installswat.sh b/source3/script/installswat.sh index 30dd2b57be..a51fd56272 100755 --- a/source3/script/installswat.sh +++ b/source3/script/installswat.sh @@ -23,6 +23,13 @@ for f in $SRCDIR../swat/images/*.gif; do chmod 0644 $FNAME done +for f in $SRCDIR../swat/images/*.jpg; do + FNAME=$SWATDIR/images/`basename $f` + echo $FNAME + cp $f $FNAME || echo Cannot install $FNAME. Does $USER have privileges? + chmod 0644 $FNAME +done + for f in $SRCDIR../swat/help/*.html; do FNAME=$SWATDIR/help/`basename $f` echo $FNAME |