Blob Blame History Raw
From 26f88fc06b4c23a2627886d6a320eabe78b4b5a4 Mon Sep 17 00:00:00 2001
From: Carl George <carl@george.computer>
Date: Fri, 25 Jun 2021 22:26:50 -0500
Subject: [PATCH] Remove schema handling from transpile.sh

---
 scripts/transpile.sh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/scripts/transpile.sh b/scripts/transpile.sh
index 0b3bbbf..2e352af 100644
--- a/scripts/transpile.sh
+++ b/scripts/transpile.sh
@@ -15,8 +15,6 @@ transpile() {
 
 rm -rf _build
 
-glib-compile-schemas schemas &
-
 # Transpile to JavaScript
 
 for proj in ${PROJECTS}; do
@@ -30,7 +28,7 @@ wait
 
 # Convert JS to GJS-compatible scripts
 
-cp -r metadata.json icons schemas *.css _build &
+cp -r metadata.json icons *.css _build &
 
 for src in $(find target -name '*.js'); do
     dest=$(echo $src | sed s#target#_build#g)
-- 
2.31.1