[Scummvm-cvs-logs] scummvm master -> 307c8b0ecb861c51cad72f614a43a67b1ab00d3e

sev- sev at scummvm.org
Fri Apr 1 11:35:57 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
307c8b0ecb DEVTOOLS: Put script which is used for preserving WAGE games


Commit: 307c8b0ecb861c51cad72f614a43a67b1ab00d3e
    https://github.com/scummvm/scummvm/commit/307c8b0ecb861c51cad72f614a43a67b1ab00d3e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-04-01T11:35:00+02:00

Commit Message:
DEVTOOLS: Put script which is used for preserving WAGE games

Changed paths:
  A devtools/encode-macbinary.sh



diff --git a/devtools/encode-macbinary.sh b/devtools/encode-macbinary.sh
new file mode 100755
index 0000000..6635f7f
--- /dev/null
+++ b/devtools/encode-macbinary.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+#
+# Iterates over current directory, encodes all files with
+# MacBinary but ensures that the dates are preserved
+
+for i in *
+do
+	macbinary encode "$i"
+	touch -r "$i" "$i.bin"
+	mv "$i.bin" "$i"
+done






More information about the Scummvm-git-logs mailing list