mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 15:00:19 +00:00
12 lines
174 B
Python
Executable File
12 lines
174 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
runtime_file = sys.argv[1]
|
|
|
|
with open(runtime_file, 'r') as f:
|
|
r = f.read().strip()
|
|
|
|
with open(runtime_file, 'w') as f:
|
|
f.write(r)
|