diff options
Diffstat (limited to 'msys2-install.sh')
-rwxr-xr-x | msys2-install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/msys2-install.sh b/msys2-install.sh index da2d2f1..4cebb73 100755 --- a/msys2-install.sh +++ b/msys2-install.sh @@ -12,15 +12,15 @@ fi # Copy binaries we directly or indirectly depend on. cp -p "$msys2_root"/bin/*.dll . -cp -p "$msys2_root"/bin/wperl.exe . -cp -p "$msys2_root"/bin/exiftool . +cp -p "$msys2_root"/bin/wperl.exe . || : +cp -p "$msys2_root"/bin/exiftool . || : # The console helper is only useful for debug builds. cp -p "$msys2_root"/bin/gspawn-*-helper*.exe . cp -pR "$msys2_root"/etc/ . mkdir -p lib cp -pR "$msys2_root"/lib/gdk-pixbuf-2.0/ lib -cp -pR "$msys2_root"/lib/perl5/ lib +cp -pR "$msys2_root"/lib/perl5/ lib || : mkdir -p share/glib-2.0/schemas cp -pR "$msys2_root"/share/glib-2.0/schemas/*.Settings.* share/glib-2.0/schemas mkdir -p share/icons |