Skip to content

Instantly share code, notes, and snippets.

View itsanuragkumarjha's full-sized avatar
🏠
Working from home at NIS

itsANURAG itsanuragkumarjha

🏠
Working from home at NIS
View GitHub Profile
@itsanuragkumarjha
itsanuragkumarjha / render-build.sh
Created August 25, 2024 05:25 — forked from BigAlRender/render-build.sh
Install Chrome on Render Native Environment
#!/usr/bin/env bash
# exit on error
set -o errexit
STORAGE_DIR=/opt/render/project/.render
if [[ ! -d $STORAGE_DIR/chrome ]]; then
echo "...Downloading Chrome"
mkdir -p $STORAGE_DIR/chrome
cd $STORAGE_DIR/chrome