update
This commit is contained in:
parent
883549eba6
commit
545ffd01f4
1 changed files with 3 additions and 3 deletions
|
|
@ -15,10 +15,10 @@ relative_file_path=$path
|
|||
|
||||
servername=/tmp/nvr$(echo $main_module_repo_path | tr "/" "_")
|
||||
|
||||
if [ -n "$relative_file_path" ]; then
|
||||
if [ -f "$relative_file_path" ]; then
|
||||
nvr -s --servername $servername $line "$relative_file_path"
|
||||
elif [ -n "$repo_relative_file_path" ]; then
|
||||
elif [ -f "$repo_relative_file_path" ]; then
|
||||
nvr -s --servername $servername $line "$repo_relative_file_path"
|
||||
elif [ -n "$main_module_relative_file_path" ]; then
|
||||
elif [ -f "$main_module_relative_file_path" ]; then
|
||||
nvr -s --servername $servername $line "$main_module_relative_file_path"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue