From aab1ef4badb2141c16e28145ca6e63fdd967deea Mon Sep 17 00:00:00 2001 From: mintty Date: Sun, 11 Sep 2016 22:04:45 +0200 Subject: [PATCH] create user home directory instead of etc for .minttyrc (#1) --- install.bat | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.bat b/install.bat index b4c3a06..72ea208 100755 --- a/install.bat +++ b/install.bat @@ -1,10 +1,11 @@ @echo off mkdir "%LOCALAPPDATA%\wsltty" mkdir "%LOCALAPPDATA%\wsltty\bin" -mkdir "%LOCALAPPDATA%\wsltty\etc" +rem mkdir "%LOCALAPPDATA%\wsltty\etc" +mkdir "%LOCALAPPDATA%\wsltty\%USERNAME%" copy LICENSE.mintty "%LOCALAPPDATA%\wsltty" copy LICENSE.wslbridge "%LOCALAPPDATA%\wsltty" -copy etc/minttyrc "%LOCALAPPDATA%\wsltty\etc" +rem copy etc/minttyrc "%LOCALAPPDATA%\wsltty\etc" copy cygwin1.dll "%LOCALAPPDATA%\wsltty\bin" copy cygwin-console-helper.exe "%LOCALAPPDATA%\wsltty\bin" copy mintty.exe "%LOCALAPPDATA%\wsltty\bin"