From 056fc5e087e3645752f33d9fad9945f0fc169d6f Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 27 Aug 2019 18:23:05 -0700 Subject: [PATCH] Remove old 'scratch project' test script, clean up .gitignore --- .gitignore | 8 +++++--- bin/test-scratch-project | 21 --------------------- 2 files changed, 5 insertions(+), 24 deletions(-) delete mode 100644 bin/test-scratch-project diff --git a/.gitignore b/.gitignore index 506a95be..835db166 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,11 @@ +# Rust output directory /target -/scratch-project -/server/failed-snapshots/ -**/*.rs.bk + +# Roblox model and place files in the root, used for debugging /*.rbxm /*.rbxmx /*.rbxl /*.rbxlx + +# Snapshot files from the 'insta' Rust crate **/*.snap.new \ No newline at end of file diff --git a/bin/test-scratch-project b/bin/test-scratch-project deleted file mode 100644 index da79446a..00000000 --- a/bin/test-scratch-project +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -# Copies a project from 'test-projects' into a folder that can be messed with -# without accidentally checking the results into version control. - -set -e - -if [ ! -d "test-projects/$1" ] -then - echo "Pick a project that exists!" - exit 1 -fi - -if [ -d "scratch-project/$1" ] -then - rm -rf "scratch-project/$1" -fi - -mkdir -p scratch-project -cp -r "test-projects/$1" scratch-project -cargo run -- serve "scratch-project/$1" \ No newline at end of file