Skip to content

Commit

Permalink
fix: correct shell parameter expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Apr 28, 2022
1 parent 80f35d6 commit 5c6cd48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions calliope.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ decrypt ()

create_anthology ()
{
Name="$year_to_compile-${ProjectName// /-/}"
Name="$year_to_compile-${ProjectName// /-}"
FileName=$Name".tex"
tmpName=$Name".tmp"

Expand Down Expand Up @@ -417,7 +417,7 @@ view_latest ()
view_anthology ()
{
Name="$year_to_compile-${ProjectName// /-/}"
Name="$year_to_compile-${ProjectName// /-}"
pushd $pdf_dir/
FileName="$Name.pdf.gpg"
decrypt "$FileName"
Expand Down

0 comments on commit 5c6cd48

Please sign in to comment.