Skip to content

Commit

Permalink
Changed daemon message on ready (#82)
Browse files Browse the repository at this point in the history
* Changed daemon message on ready

* removed window from release flow
  • Loading branch information
gpuente authored Jun 26, 2020
1 parent f069565 commit 5015448
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand Down Expand Up @@ -43,4 +43,4 @@ jobs:
CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
if: matrix.os == 'windows-latest'
run: yarn electron-pack --win --x64 --ia32
run: yarn electron-pack --win --x64 --ia32
2 changes: 1 addition & 1 deletion public/electron/daemon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DaemonProcess {
console.log(chalk.green(data));

// TODO replace log message
if (data.includes('level=debug msg="Starting textile threadsc listener[]')) {
if (data.includes('daemon ready')) {
this.callHandlers('ready');
}
});
Expand Down

0 comments on commit 5015448

Please sign in to comment.