Export Script for Firebase Deploy

Greetings all! I’m attempting to automate my Firebase Deploy step by using an Export Script in BSS. Unfortunately, every time the script runs, I get a “command not found” error in the error.log.

Here’s my command shell script (Mac OS), firebase-deploy.sh

#!bin/bash
cd $1
firebase deploy

And the error I’m getting in error.log

/firebase-deploy.sh: line 3: firebase: command not found

I can successfully run my firebase-deploy.sh script from Terminal (Mac OS), where “firebase deploy” completes as intended. For some reason, when BSS runs the script, the firebase command no longer works. :thinking:

Any insight is appreciated!

The first line, it should be
#!/bin/bash