diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-28 23:23:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-28 23:23:02 +0000 |
commit | 01daae9a5dc72c7ea82965a40f0c5a671dbaf79a (patch) | |
tree | 2d8285ba47e6b6051b81b957776408f323a3ced5 /scripts | |
parent | 6a64dc642b8e505a564f21f8fae1aedcf18ca4ec (diff) | |
download | poky-01daae9a5dc72c7ea82965a40f0c5a671dbaf79a.tar.gz |
scripts/poky-autobuild-postprocess: Ignore chmod failures
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4368 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-autobuild-postprocess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-autobuild-postprocess b/scripts/poky-autobuild-postprocess index 9edc52561a..d9ba72d14d 100755 --- a/scripts/poky-autobuild-postprocess +++ b/scripts/poky-autobuild-postprocess | |||
@@ -119,5 +119,5 @@ done | |||
119 | if [ -e ./images-complete ]; then | 119 | if [ -e ./images-complete ]; then |
120 | touch $DEST/complete | 120 | touch $DEST/complete |
121 | fi | 121 | fi |
122 | chmod a+w -R $DEST | 122 | chmod a+w -R $DEST || true |
123 | 123 | ||