We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39cee57 commit 84ab0adCopy full SHA for 84ab0ad
deploy-plotqi.sh
@@ -0,0 +1,25 @@
1
+#!/bin/bash
2
+
3
+PROJPATH=$HOME/projects
4
+SRCPATH=$PROJPATH/plotqi/build
5
+PKGPATH=$PROJPATH/upiq5/app/src/uu.chart
6
+DESTPATH=$PKGPATH/uu/chart/browser/resources/plotqi
7
8
+# copy assets from plotqi build to uu.chart resource directory:
9
10
+cp $SRCPATH/plotqi.*s* $DESTPATH
11
12
+# open a new iTerm2 window in
13
+osascript <<EOF
14
+ tell application "iTerm2"
15
+ activate
16
+ tell current session of current window
17
+ set newsession1 to (split vertically with default profile)
18
+ select newsession1
19
+ end tell
20
21
+ write text "cd $DESTPATH"
22
+ write text "git status"
23
24
25
+EOF
0 commit comments