Commit 27df4dc8 authored by vipwzw's avatar vipwzw

fix linter

parent db9a91c0
#!/bin/sh
echo "package executor\n\nvar callcode = \`" >const.go
cat runtime.js >>const.go
echo '`' >>const.go
echo 'var jscode = `' >>const.go
cat test.js >>const.go
echo '`' >>const.go
echo "var _ = jscode" >>const.go
printf "package executor\n\nvar callcode = \`\n" >const.go
cat "runtime.js" >>const.go
printf '`\n' >>const.go
printf 'var jscode = `\n' >>const.go
cat "test.js" >>const.go
printf '`\n' >>const.go
printf "var _ = jscode\n" >>const.go
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment