Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 23, 2025
1 parent c7ad276 commit 3378c2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions local-app/bin/tf
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#!/bin/bash

VERSION="1.0.0"
VERSION="1.0.1"
ACTION=$1

if [[ -z $ACTION ]] || [[ $ACTION = "init" ]]
if [[ -z $ACTION ]] || [[ $ACTION == "init" ]]
then
tf-init -reconfigure
tf-init -upgrade
fi

if [[ -z $ACTION ]] || [[ $ACTION = "plan" ]]
if [[ -z $ACTION ]] || [[ $ACTION == "plan" ]]
then
tf-plan
tf-plan summary
fi

if [[ $ACTION = "grep" ]]
if [[ $ACTION == "grep" ]]
then
tf-plan summary | grep ' ~ ' | grep -v tags | grep -v boc:
fi
Expand Down

0 comments on commit 3378c2c

Please sign in to comment.