From 188671b7e1bf5f922e1fd603711354b27b9cf8d1 Mon Sep 17 00:00:00 2001 From: Godzil Date: Tue, 8 Oct 2019 14:31:16 +0100 Subject: [PATCH] Adding proper launch scripts --- bin/cel2wst | 6 ++++++ bin/map2wsm | 6 ++++++ bin/splashbuilder | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 bin/cel2wst create mode 100644 bin/map2wsm create mode 100644 bin/splashbuilder diff --git a/bin/cel2wst b/bin/cel2wst new file mode 100644 index 0000000..fd14ebd --- /dev/null +++ b/bin/cel2wst @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import ws_splashbuilder + +if __name__ == '__main__': + ws_splashbuilder.cel2wst.main() \ No newline at end of file diff --git a/bin/map2wsm b/bin/map2wsm new file mode 100644 index 0000000..0765b27 --- /dev/null +++ b/bin/map2wsm @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import ws_splashbuilder + +if __name__ == '__main__': + ws_splashbuilder.map2wsm.main() \ No newline at end of file diff --git a/bin/splashbuilder b/bin/splashbuilder new file mode 100644 index 0000000..8c38528 --- /dev/null +++ b/bin/splashbuilder @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import ws_splashbuilder + +if __name__ == '__main__': + ws_splashbuilder.splashbuilder.main() \ No newline at end of file