#!/bin/bash
set -euo pipefail
app="./projen.js"
if [ ! -f $app ]; then
  echo "$app not found"
  exit 1
fi
exec node $app