Files
serban-alexandru 5f0672aaf1 plane.so
2024-07-26 15:49:55 +03:00

12 lines
211 B
Bash

#!/bin/bash
if [ ! -d "./repo" ]; then
git clone --depth 1 --branch master --single-branch https://github.com/supabase/supabase repo
else
cd repo
git pull
cd ..
fi
cp -r ./repo/docker/. ./code