Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(utils): remove line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Netzer committed Jun 29, 2021
1 parent ced3d87 commit a6cc290
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ steps.githubAppAuth.outputs.token }}
run: |
git config --global hub.protocol https
git config user.name e-square-ci
git config user.email [email protected]
git remote rm origin
git remote add origin "https://x-access-token:[email protected]/e-square-io/${{ matrix.package }}.git"
git fetch
Expand Down
1 change: 0 additions & 1 deletion packages/utils/src/lib/nx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export async function nxCommand(command: string, target: string, exec: Exec, arg

export async function nxPrintAffected(target: string, exec: Exec): Promise<string[]> {
const projects = (await nxCommand('print-affected', target, exec, ['--select=tasks.target.project'])).trim();

debug(`🐞 Affected project for ${target}: ${projects}`);

return projects.split(', ');
Expand Down

0 comments on commit a6cc290

Please sign in to comment.