Skip to content

Commit

Permalink
reintroduce imname suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Jan 20, 2025
1 parent c1724df commit 63f43d9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions demo/07_img.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ else
echo parent=$parent
mkdir -p "$parent/img"
export imgname=${ms%.ms}
# imname is an optional suffix, not to be confused with imgname
[ -z "${imname:-}" ] || export imgname="${imgname}${imname}"
# img_suffix does the same thing
[ -z "${img_suffix:-}" ] || export imgname="${imgname}${img_suffix}"
export imgname=wsclean_${imgname##*/}
export imgname="${parent}/img/${imgname##*/}"
echo imgname=$imgname
Expand Down

0 comments on commit 63f43d9

Please sign in to comment.