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:
5
MakeFile
5
MakeFile
@@ -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
|
||||
@@ -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
7
rb.txt
Executable 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
|
||||
Reference in New Issue
Block a user