Skip to content

Commit

Permalink
Code & Features Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaneltitane committed Jun 26, 2024
1 parent febb2ba commit 0035cba
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions frobulator
Original file line number Diff line number Diff line change
Expand Up @@ -2440,15 +2440,16 @@ frobulator.delete () {

list=(${@:1})
else
file="${1}"
item="${1}"

item="${file}"

list=()

list+=("${item}")
fi
else
fi

if [ $# -eq 2 ]
then
path="${1}"

if [[ -n "${#list[@]}" ]]
Expand All @@ -2457,9 +2458,9 @@ frobulator.delete () {

list=(${@:2})
else
file="${2}"
item="${2}"

item="${path}"/"${file}"
item="${path}"/"${item}"

list=()

Expand Down

0 comments on commit 0035cba

Please sign in to comment.