Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fixes linux nc integration, fix #1 #3

Merged
merged 1 commit into from
Oct 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion prettierme
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ if [ -z "$prettierddata" ]; then
prettierdtoken=$(echo $prettierddata | cut -d ' ' -f 2)
fi

if nc 2>&1 | grep -- -q >/dev/null; then
NC_OPTIONS="-q 0"
else
NC_OPTIONS=""
fi

# uses netcat to lint the file
echo "$prettierdtoken {\"cwd\":\"$PWD\",\"args\":[\"--write\", \"--local-only\", \"--pkg-conf\", \"$1\"]}" | nc 127.0.0.1 "$prettierdport"
echo "$prettierdtoken {\"cwd\":\"$PWD\",\"args\":[\"--write\", \"--local-only\", \"--pkg-conf\", \"$1\"]}" | nc $NC_OPTIONS 127.0.0.1 "$prettierdport"