You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A workaround exists for this issue: make sure you are using git to clone the matrix-puppet-signal
repository rather than downloading an archive from github.
I ran into a weird problem while installing the bridge inside docker. Instead of doing git clone https://... I did wget https://.../archive/... -O- | tar -xz -f -. During npm install, I'd get this error:
Running "gitinfo" task
Running "getExpireTime" task
Warning: Cannot read property 'branch' of undefined Use --force to continue.
Aborted due to warnings.
error Command failed with exit code 3.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
npm ERR! code ELIFECYCLE
npm ERR! errno 3
npm ERR! [email protected] postinstall: `cd node_modules/signal-desktop && yarn && yarn grunt`
npm ERR! Exit status 3
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
This is happening during the build of the signal-desktop package. Its getExpireTime task requires the gitinfo task to pull the commit time of the current branch of the signal-desktop git repository, which does not exist in the npm install context. However, if you clone the matrix-puppet-signal git repository, git will pull the information from that repository instead.
The text was updated successfully, but these errors were encountered:
A workaround exists for this issue: make sure you are using git to clone the matrix-puppet-signal
repository rather than downloading an archive from github.
I ran into a weird problem while installing the bridge inside docker. Instead of doing
git clone https://...
I didwget https://.../archive/... -O- | tar -xz -f -
. During npm install, I'd get this error:This is happening during the build of the
signal-desktop
package. ItsgetExpireTime
task requires thegitinfo
task to pull the commit time of the current branch of thesignal-desktop
git repository, which does not exist in thenpm install
context. However, if you clone thematrix-puppet-signal
git repository, git will pull the information from that repository instead.The text was updated successfully, but these errors were encountered: