Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Commit

Permalink
Fix mod loader.
Browse files Browse the repository at this point in the history
  • Loading branch information
torralbaa committed Sep 1, 2020
1 parent d6d0f10 commit bbcb57e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@
pack:
mkdir -p ./deb/
cp -a ./res/. ./deb/
mkdir -p ./deb/usr/lib/python3/dist-packages/
cp ./src/mcpil.py ./deb/usr/bin/mcpil
cp ./src/mcpim.py ./deb/usr/bin/mcpim
cp ./src/mcpim.py ./deb/usr/lib/python3/dist-packages/
chmod a+x ./deb/usr/bin/mcpil
chmod a+x ./deb/usr/bin/mcpim
rm -f ./deb/usr/bin/mcpim
ln -s /usr/lib/python3/dist-packages/mcpim.py ./deb/usr/bin/mcpim
@echo "Package: mcpil" > ./deb/DEBIAN/control
@echo "Version: 0.6.0" >> ./deb/DEBIAN/control
@echo "Priority: optional" >> ./deb/DEBIAN/control
Expand Down
1 change: 1 addition & 0 deletions src/mcpil.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
from os import *
from tkinter import *
from tkinter import ttk
#from tkinter.ttk import *
from tkinter import simpledialog
from tkinter.filedialog import askopenfilename
from shutil import copy2
Expand Down

0 comments on commit bbcb57e

Please sign in to comment.