mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
8 lines
402 B
Bash
Executable File
8 lines
402 B
Bash
Executable File
#! /bin/bash
|
|
# This file exists because yarn 2+ seems to not be able to use the yarn 1
|
|
# syntax in "scripts" to concatenate two commands output together using { }.
|
|
# This script simply outputs both and then normal pipe operator syntax can be
|
|
# used in the "scripts" key can be used to operate on the output.
|
|
|
|
git ls-files --others --exclude-standard ; git diff-index --name-only --diff-filter=d HEAD ;
|