File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ const os = require("os")
77async function go ( ) {
88 process . stderr . write ( "determining latest tea version…\n" )
99
10- const HOMEDIR = process . env [ 'GITHUB_WORKSPACE' ] || os . homedir ( )
11-
12- const PREFIX = process . env [ 'INPUT_PREFIX' ] || `${ HOMEDIR } /opt`
10+ const PREFIX = process . env [ 'INPUT_PREFIX' ] || `${ os . homedir ( ) } /.tea`
1311 const TEA_DIR = ( ( ) => {
1412 let TEA_DIR = process . env [ 'INPUT_SRCROOT' ]
1513 if ( ! TEA_DIR ) return
Original file line number Diff line number Diff line change @@ -4,9 +4,8 @@ description: >
44inputs :
55 prefix :
66 description : >
7- Where tea installs.
8- Set to `null` to install to the tea default (~/.tea).
9- For GHA we default to `~/opt`.
7+ Where tea stows its packages.
8+ Defaults to `$HOME/.tea`.
109 required : false
1110 version :
1211 description : >
You can’t perform that action at this time.
0 commit comments