aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/pages/gen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/html/pages/gen.sh')
-rwxr-xr-xpkg/html/pages/gen.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkg/html/pages/gen.sh b/pkg/html/pages/gen.sh
deleted file mode 100755
index a326138b2..000000000
--- a/pkg/html/pages/gen.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2020 syzkaller project authors. All rights reserved.
-# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-
-set -eu
-
-echo '// Code generated by pkg/html/html.go. DO NOT EDIT.' > generated.go
-echo 'package pages' >> generated.go
-echo 'const style = `' >> generated.go
-cat ../../../dashboard/app/static/style.css >> generated.go
-echo '`' >> generated.go
-echo 'const js = `' >> generated.go
-cat ../../../dashboard/app/static/common.js >> generated.go
-echo '`' >> generated.go