summaryrefslogtreecommitdiff
path: root/dev_scripts
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-08-27 19:13:08 -0400
committerMicah Lee <micah@micahflee.com>2020-08-27 19:13:08 -0400
commit4c4323a772c56c6fc38ed5ec99868ba2ce82285d (patch)
tree4679af536b2ee057f67123c36814427175b7924b /dev_scripts
parentdc6cefd7ce0d732667163273871a0b93ce62ea3b (diff)
downloadonionshare-4c4323a772c56c6fc38ed5ec99868ba2ce82285d.tar.gz
onionshare-4c4323a772c56c6fc38ed5ec99868ba2ce82285d.zip
Update Copyright to 2020 everywhere, and assign to Micah Lee, et al. instead of just Micah Lee
Diffstat (limited to 'dev_scripts')
-rwxr-xr-xdev_scripts/onionshare4
-rwxr-xr-xdev_scripts/onionshare-gui4
2 files changed, 6 insertions, 2 deletions
diff --git a/dev_scripts/onionshare b/dev_scripts/onionshare
index 29cdedcc..33e59203 100755
--- a/dev_scripts/onionshare
+++ b/dev_scripts/onionshare
@@ -3,7 +3,7 @@
"""
OnionShare | https://onionshare.org/
-Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
+Copyright (C) 2014-2020 Micah Lee, et al. <micah@micahflee.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -21,8 +21,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# Load onionshare module and resources from the source code tree
import os, sys
+
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
sys.onionshare_dev_mode = True
import onionshare
+
onionshare.main()
diff --git a/dev_scripts/onionshare-gui b/dev_scripts/onionshare-gui
index 40ab742c..6585be02 100755
--- a/dev_scripts/onionshare-gui
+++ b/dev_scripts/onionshare-gui
@@ -3,7 +3,7 @@
"""
OnionShare | https://onionshare.org/
-Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
+Copyright (C) 2014-2020 Micah Lee, et al. <micah@micahflee.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -21,8 +21,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
# Load onionshare module and resources from the source code tree
import os, sys
+
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
sys.onionshare_dev_mode = True
import onionshare_gui
+
onionshare_gui.main()