Skip to content

Commit 146d55e

Browse files
committed
remove tests
1 parent 749f553 commit 146d55e

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

src/aws/dependencies/detectIncompleteState.sh

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -116,20 +116,7 @@ detectIncompleteState() {
116116
# Bit 0 -> keyPairExists
117117
local binaryState=$(((instanceExists << 2) | (securityGroupExists << 1) | keyPairExists))
118118

119-
echo "Binary state (in binary): $(echo "obase=2; $binaryState" | bc)"
119+
#echo "Binary state (in binary): $(echo "obase=2; $binaryState" | bc)"
120120
return $binaryState
121121
}
122122

123-
detectIncompleteState "luftballon" "luftballons-sg" "luftballon"
124-
binaryState=$?
125-
126-
# Analyze each bit
127-
if instanceExists $binaryState; then
128-
echo "Instance exists."
129-
fi
130-
if securityGroupExists $binaryState; then
131-
echo "Security Group exists."
132-
fi
133-
if keyPairExists $binaryState; then
134-
echo "Key Pair exists."
135-
fi

0 commit comments

Comments
 (0)