We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f196f80 commit 095951eCopy full SHA for 095951e
setup.py
@@ -3,8 +3,8 @@
3
from PyInstaller import __main__ as PyInstallerMain
4
5
if __name__ == "__main__":
6
- configPath=os.path.join(os.path.dirname(sys.argv[0]), "config.ini")
7
- configPlacePyFile = os.path.join(os.path.dirname(sys.argv[0]), "config_place.py")
+ configPath=os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), "config.ini")
+ configPlacePyFile = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), "config_place.py")
8
f = open(configPlacePyFile, "w")
9
f.write("configFilePath=\"" + configPath + "\"")
10
f.close()
0 commit comments