File tree 2 files changed +4
-4
lines changed
packages/web/src/components/track
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,10 +97,11 @@ web-distribute:
97
97
# https://github.com/nvm-sh/nvm#installing-and-updating
98
98
command : |
99
99
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
100
- export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
101
- [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
100
+ echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
101
+ echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" --install' >> $BASH_ENV
102
+ source $BASH_ENV
102
103
nvm install 14.20.1
103
- nvm use 14.20.1
104
+ nvm alias default 14.20.1
104
105
- run :
105
106
name : distribute
106
107
command : |
Original file line number Diff line number Diff line change @@ -327,7 +327,6 @@ class GiantTrackTile extends PureComponent {
327
327
FeatureFlags . PODCAST_CONTROL_UPDATES_ENABLED ,
328
328
FeatureFlags . PODCAST_CONTROL_UPDATES_ENABLED_FALLBACK
329
329
)
330
- console . log ( 'isNewPodcastControlEnabled' , isNewPodcastControlsEnabled )
331
330
332
331
return (
333
332
< >
You can’t perform that action at this time.
0 commit comments