Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
139309: scripts: include newline before appending to bashrc r=ibreakthecloud a=ibreakthecloud `pnpm` tool is installed in gceworker as a part of bootstraping the gceworker vm. This installation also writes to `~/.bashrc` file inside the same vm without putting the trailing newline. This resulted in new appends happening at the wrong line, which effectively rendered any new command append a code comment. example: before: `command1` is a new append `# pnpm ends herecommand1` after: `command1` is a new append `#pnpm ends here` `command1` This commit adds newline at two different instances. First after the installation of `pnpm` and before appending `. ~/.bashrc_bootstrap`. Part of DEVINF-1371 Co-authored-by: Harshvardhan Karn <[email protected]>
- Loading branch information