-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathinstall.py
More file actions
22 lines (19 loc) · 889 Bytes
/
install.py
File metadata and controls
22 lines (19 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
####################################################################
# Type: SCRIPT #
# #
# Description: This script installs the repository. It creates #
# configuration files and set up scripts. #
# #
# Notes: Keep this script compatible with Python 2.4. That means #
# don't use format! #
####################################################################
from re import search, split
from hcal_teststand import install
#from hcal_teststand import amc13 # Not compatible...
# FUNCTIONS:
# /FUNCTIONS
# MAIN:
if __name__ == "__main__":
install.make_amc13_configs()
install.make_setup_scripts("teststands.txt")
# /MAIN