diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-05-16 21:35:22 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-05-16 21:35:22 +0900 |
commit | be6f809581ccbcd6411713128a63711eaa2ce6b7 (patch) | |
tree | c62377a36c274d878224dc102562fdfbc10e17be /debian/rules | |
parent | 99a3049c67005bf5e0ba45db264d56d3b57cb792 (diff) | |
download | vyos-1x-be6f809581ccbcd6411713128a63711eaa2ce6b7.tar.gz vyos-1x-be6f809581ccbcd6411713128a63711eaa2ce6b7.zip |
Use '_' instead of '-' for python scripts for test
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index ed33706e4..3781a6f71 100755 --- a/debian/rules +++ b/debian/rules @@ -20,8 +20,8 @@ override_dh_auto_install: # Install scripts mkdir -p $(DIR)/$(VYOS_SBIN_DIR) mkdir -p $(DIR)/$(VYOS_BIN_DIR) - cp -r src/conf-mode/* $(DIR)/$(VYOS_SBIN_DIR) - cp -r src/op-mode/* $(DIR)/$(VYOS_BIN_DIR) + cp -r src/conf_mode/* $(DIR)/$(VYOS_SBIN_DIR) + cp -r src/op_mode/* $(DIR)/$(VYOS_BIN_DIR) # Install validators mkdir -p $(DIR)/$(VYOS_LIBEXEC_DIR)/validators |