Skip to content

Commit 6a50c32

Browse files
committed
Fix syntax error and bump up pyinstaller
1 parent 5001e8d commit 6a50c32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ docker:
1111
- etc/
1212
- bin/
1313
script:
14-
- docker run -v "$(pwd):/src/" cdrx/pyinstaller-linux:python2 "pyinstaller --clean -y --dist ./dist/linux --workpath /tmp autossh.spec && pyinstaller --clean -y --dist ./dist/linux --workpath /tmp tmux.spec && chown -R --reference=. ./dist/linux"
14+
- docker run -v "$(pwd):/src/" cdrx/pyinstaller-linux:latest "pyinstaller --clean -y --dist ./dist/linux --workpath /tmp autossh.spec && pyinstaller --clean -y --dist ./dist/linux --workpath /tmp tmux.spec && chown -R --reference=. ./dist/linux"
1515
- mkdir -p etc/tmuxpy bin
1616
- cp common.conf etc/tmuxpy/
1717
- cp inner.conf etc/tmuxpy/

tmux.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def get_config(conf_file):
101101
config_locations = [
102102
conf_file,
103103
expanduser("~/.tmux/%s" % basename(conf_file)),
104-
expanduser("~/.tmuxpy/%s" % basename(conf_file),
104+
expanduser("~/.tmuxpy/%s" % basename(conf_file)),
105105
expanduser("~/.local/etc/tmuxpy/%s" % basename(conf_file)),
106106
"/usr/local/etc/tmuxpy/%s" % basename(conf_file),
107107
"/etc/tmuxpy/%s" % basename(conf_file),

0 commit comments

Comments
 (0)