Blame 0001-Remove-schema-handling-from-transpile.sh.patch

2a76956
From 26f88fc06b4c23a2627886d6a320eabe78b4b5a4 Mon Sep 17 00:00:00 2001
2a76956
From: Carl George <carl@george.computer>
2a76956
Date: Fri, 25 Jun 2021 22:26:50 -0500
2a76956
Subject: [PATCH] Remove schema handling from transpile.sh
2a76956
2a76956
---
2a76956
 scripts/transpile.sh | 4 +---
2a76956
 1 file changed, 1 insertion(+), 3 deletions(-)
2a76956
2a76956
diff --git a/scripts/transpile.sh b/scripts/transpile.sh
2a76956
index 0b3bbbf..2e352af 100644
2a76956
--- a/scripts/transpile.sh
2a76956
+++ b/scripts/transpile.sh
2a76956
@@ -15,8 +15,6 @@ transpile() {
2a76956
 
2a76956
 rm -rf _build
2a76956
 
2a76956
-glib-compile-schemas schemas &
2a76956
-
2a76956
 # Transpile to JavaScript
2a76956
 
2a76956
 for proj in ${PROJECTS}; do
2a76956
@@ -30,7 +28,7 @@ wait
2a76956
 
2a76956
 # Convert JS to GJS-compatible scripts
2a76956
 
2a76956
-cp -r metadata.json icons schemas *.css _build &
2a76956
+cp -r metadata.json icons *.css _build &
2a76956
 
2a76956
 for src in $(find target -name '*.js'); do
2a76956
     dest=$(echo $src | sed s#target#_build#g)
2a76956
-- 
2a76956
2.31.1
2a76956