1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Added shell script

This commit is contained in:
Heesu Hwang
2017-06-20 14:55:59 -07:00
parent ae9dd97f16
commit f48ef28688
3 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +0,0 @@
local-rebuild:
sudo rm -r build
sudo rm -r octodns.egg-info/
sudo python setup.py build -q
sudo python setup.py install -q

View File

@@ -17,6 +17,9 @@ import re
from ..record import Record, Update
from .base import BaseProvider
#TODO: changes made to master include adding /build, Makefile to .gitignore and
# making Makefile.
# Only made for A records. will have to adjust for more generic params types
class _AzureRecord(object):
def __init__(self, resource_group_name, record, values=None):

7
rb.txt Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
#script to rebuild octodns quickly
sudo rm -r /home/t-hehwan/GitHub/octodns/build
sudo rm -r /home/t-hehwan/GitHub/octodns/octodns.egg-info
sudo python /home/t-hehwan/GitHub/octodns/setup.py build -q
sudo python /home/t-hehwan/GitHub/octodns/setup.py install -q