Skip to content

Commit 99d38cf

Browse files
committed
Do not consider failure to sync fatal
We still log the error but we assume it is okay to fail. See: https://progress.opensuse.org/issues/112871
1 parent 6576417 commit 99d38cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/scriptgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ def gen_read_files(self, f):
674674
if self.assets and self.assets_flavor:
675675
for k, v in self.asset_folders.items():
676676
self.p(
677-
"""rsync -4 --list-only $rsync_pwd_option PRODUCTPATH/{}/*{} | awk '{{ $1=$2=$3=$4=""; print substr($0,5); }}' >> __envsub/files_asset.lst""".format(
677+
"""rsync -4 --list-only $rsync_pwd_option PRODUCTPATH/{}/*{} | awk '{{ $1=$2=$3=$4=""; print substr($0,5); }}' >> __envsub/files_asset.lst || true""".format(
678678
v, k
679679
),
680680
f,

0 commit comments

Comments
 (0)