Pixlet install on linux/RaspberryPi

I’m trying to set up my Raspberry Pi running Raspbian to render my app using cron, and I’ve written a .sh file that basically runs an associated Python script then renders / pushes the .star file to the Tidbyt. When I run the .sh file using bash from the terminal, everything works great. However, I’ve added it as a Cron Job, but it fails because: “/home/pi/scripts/push.sh: line 2: pixlet: command not found.” It runs the python script A-OK, but for some reason isn’t able to find pixel and I have no clue why. For reference, I store my .sh files, .py files, and .star files all in the same spot (scripts folder within pi), and my cron setup is below:

SHELL=/bin/bash
PATH=/usr/sbin:/usr/bin:/sbin:/bin

0 * * * * bash /home/pi/scripts/pull_data.sh
* * * * * bash /home/pi/scripts/push.sh

Does anyone see what I might be doing wrong here / why it can’t find pixlet in the Cron Job while it’s fine elsewhere?