Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2021-12-24 01:06:33 +0300
committerlovetox <philipp@hoerist.com>2021-12-24 01:06:33 +0300
commit1602721766a4bc1bc013f58bd597bc4b6198c724 (patch)
tree7cbf31e6677ff9cc8f21a1e32b1850a1a1682d56 /scripts
parent4ff4a6d867ffb01aef55c0d260f570546d920230 (diff)
Scripts: Add script to copy gtk folder
This copys the content of the gtk folder into the gui folder so imports from gui module work while running pyright
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/link-gtk.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/ci/link-gtk.sh b/scripts/ci/link-gtk.sh
new file mode 100755
index 000000000..6575bf7a6
--- /dev/null
+++ b/scripts/ci/link-gtk.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+cd gajim
+mv gui gui_temp
+cp -r gtk gui
+mv -f gui_temp/__init__.py gui/__init__.py
+rm -r gui_temp