mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
waht python is available and use the right directory. Factored path stuff out of shell scripts into a shared 'setup_paths.sh'.
9 lines
105 B
Python
Executable File
9 lines
105 B
Python
Executable File
#!/usr/bin/env python2.4
|
|
|
|
import sys
|
|
|
|
if sys.maxunicode > 65535:
|
|
print "UCS4"
|
|
else:
|
|
print "UCS2"
|