We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d897dfd commit ce90cc5Copy full SHA for ce90cc5
setup.py
@@ -2,14 +2,14 @@
2
3
from distutils.core import setup
4
from sys import maxsize
5
-from os import rename
+from shutil import copy
6
7
# Determines which is the appropriate executable for 32-bit
8
if maxsize == 2147483647:
9
- rename("xflux32", "xflux")
+ copy("xflux32", "xflux")
10
# ... or 64-bit processors
11
elif maxsize == 9223372036854775807:
12
- rename("xflux64", "xflux")
+ copy("xflux64", "xflux")
13
14
setup(name = "f.lux indicator applet",
15
version = "1.1.8",
0 commit comments