[parser] Changed command "deploy" to "export"

[cmd_deploy] Changed cmd_deploy function to cmd_export
This commit is contained in:
ayakael 2018-06-15 17:33:17 -08:00
parent 04fbdfd4f1
commit 1c2371a266
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -1,18 +1,18 @@
#! /bin/bash #! /bin/bash
# doc cmd_deploy { # doc cmd_export {
# #
# DESCRIPTION # DESCRIPTION
# cmd_deploy - Command that deploys IMAGEIDs using deploy_imageid function # cmd_export - Command that deploys IMAGEIDs using deploy_imageid function
# #
# USAGE # USAGE
# cmd_deploy - </path/to/git/dir> </path/to/target> [<old git commit>] # cmd_export - </path/to/git/dir> </path/to/target> [<old git commit>]
# #
# DEPENDENCIES bunc/src/* src/print_imageid_du src/deploy_rm src/deploy_cp src/deploy_meta # DEPENDENCIES bunc/src/* src/print_imageid_du src/deploy_rm src/deploy_cp src/deploy_meta
# #
# } # }
cmd_deploy() { cmd_export() {
local GIT_DIR="${1}" local GIT_DIR="${1}"
local TARGET="${2}" local TARGET="${2}"
local OLD_COMMIT="${3}" local OLD_COMMIT="${3}"