]> git.phdru.name Git - dotfiles.git/commitdiff
bin/: Remove outdated PTL-related scripts
authorOleg Broytman <phd@phdru.name>
Sat, 5 May 2018 00:30:17 +0000 (03:30 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 5 May 2018 00:30:17 +0000 (03:30 +0300)
bin/compyle-ptl [deleted file]
bin/compyleall-ptl [deleted file]

diff --git a/bin/compyle-ptl b/bin/compyle-ptl
deleted file mode 100755 (executable)
index 97292bb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /usr/bin/env python
-
-
-import sys
-from quixote.ptl.ptl_compile import compile
-
-if len(sys.argv) <= 1:
-   sys.exit(1)
-
-for file in sys.argv[1:]:
-   compile(file, file[:-3]+'pyc')
diff --git a/bin/compyleall-ptl b/bin/compyleall-ptl
deleted file mode 100755 (executable)
index bf602a9..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#! /usr/bin/env python
-
-
-import sys
-from quixote.ptl.ptl_compile import compile_dir
-
-compile_dir('.')