Skip to content

Commit

Permalink
fix: correct redirection operator
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Jan 9, 2023
1 parent 49b64ae commit 515bb73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions calliope.sh
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ encrypt ()
then
echo "Encryption is not enabled"
else
if command -v $GPG_COMMAND %> /dev/null
if command -v $GPG_COMMAND &> /dev/null
then
if [ -f "$1" ]
then
Expand Down Expand Up @@ -268,7 +268,7 @@ decrypt ()
then
echo "Encryption is not enabled"
else
if command -v $GPG_COMMAND %> /dev/null
if command -v $GPG_COMMAND &> /dev/null
then
if [ -f "$1" ]
then
Expand Down Expand Up @@ -537,7 +537,7 @@ remove_unencrypted ()
commit_changes ()
{
if ! command -v git %> /dev/null
if ! command -v git &> /dev/null
then
echo "git is not installed."
exit -1
Expand Down

0 comments on commit 515bb73

Please sign in to comment.