summaryrefslogtreecommitdiff
path: root/bin/git-annex-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'bin/git-annex-wrapper')
-rwxr-xr-xbin/git-annex-wrapper17
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/git-annex-wrapper b/bin/git-annex-wrapper
new file mode 100755
index 0000000..eddaf0f
--- /dev/null
+++ b/bin/git-annex-wrapper
@@ -0,0 +1,17 @@
+#!/usr/bin/env python3
+'''
+By eroen, 2013
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+'''
+
+from ga_wrapper import wrapper
+
+
+def main():
+ wrapper.generic_wrapper()
+
+if __name__ == '__main__':
+ main()