From 92a63c38636b3eeca578c65d05c0652fe89ae8d8 Mon Sep 17 00:00:00 2001
From: Forrest Fuqua <kingjrwr@gmail.com>
Date: Thu, 3 Oct 2019 17:05:07 -0400
Subject: [PATCH] Update File to randomize gender in build scripts

---
 scripts/create_sibling.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/scripts/create_sibling.sh b/scripts/create_sibling.sh
index 55b784f..f2f5c5f 100755
--- a/scripts/create_sibling.sh
+++ b/scripts/create_sibling.sh
@@ -335,7 +335,13 @@ fi
 setup_raspbian
 provision_raspbian
 
-echo -e "[+] Congratz, it's a boy (⌐■_■)!"
+#Make a baby with a random gender, maybe do something fun with this later!
+gender[0]="boy"
+gender[1]="girl"
+
+rand=$[ $RANDOM % 2 ]
+
+echo -e "[+] Congratz, it's a ${arr[$rand]} (⌐■_■)!"
 echo -e "[+] One more step: dd if=../${PWNI_OUTPUT} of=<PATH_TO_SDCARD> bs=4M status=progress"
 
 if [ "${OPT_SPARSE}" -eq 1 ];