The Wayback Machine - https://web.archive.org/web/20230310140841/https://github.com/rubys/venus/blob/master/publish.py
Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 17 lines (14 sloc) 385 Bytes
#!/usr/bin/env python
"""
Main program to run just the splice portion of planet
"""
import os.path
import sys
from planet import publish, config
if __name__ == '__main__':
if len(sys.argv) == 2 and os.path.isfile(sys.argv[1]):
config.load(sys.argv[1])
publish.publish(config)
else:
print "Usage:"
print " python %s config.ini" % sys.argv[0]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.