treewide: remove double quotes from wrappers

Close #14753; see that for context.
This commit is contained in:
Marius Bakke
2016-06-22 11:12:27 +02:00
committed by Vladimír Čunát
parent c05d829598
commit 4a7d31a392
5 changed files with 11 additions and 11 deletions
@@ -35,9 +35,9 @@ buildPythonApplication rec {
postInstall = ''
wrapProgram $out/bin/qtile \
--set QTILE_WRAPPER '"$0"' \
--set QTILE_SAVED_PYTHONPATH '"$PYTHONPATH"' \
--set QTILE_SAVED_PATH '"$PATH"'
--set QTILE_WRAPPER '$0' \
--set QTILE_SAVED_PYTHONPATH '$PYTHONPATH' \
--set QTILE_SAVED_PATH '$PATH'
'';
meta = with stdenv.lib; {