update some config references

This commit is contained in:
Joe 2020-02-16 07:19:55 -06:00
parent 9c8479bf45
commit 0bf86ce3de
Signed by: joe
GPG Key ID: 8595A3F8F2CE1B74
1 changed files with 7 additions and 7 deletions

14
ysm.sh
View File

@ -39,7 +39,7 @@ CreateFiles() {
}
CreateArray() {
sessions=($default_s_path)
sessions=(${config[s_path]})
}
UserInput() {
@ -65,15 +65,15 @@ Debug() {
echo Debug Enabled!
echo Sessions: $default_s_path
echo Total: ${#sessions[*]}
echo Extension: $default_extension
echo Name: $default_name
echo Format: $default_format
echo Action: $default_action
echo Path: $default_path
echo Extension: ${config[extension]}
echo Name: ${config[name]}
echo Format: ${config[format]}
echo Action: ${config[action]}
echo Path: ${config[path]}
echo S-Path: "${config[s_path]}"
}
Main() {
Configure
CreateFiles
CreateArray
Debug