This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Setup - command line only


Kevin and Nancy wrote:
> A separate question might be, why can't setup update itself?  Even, "click
> here to download the new setup" would be a setup forward.

That is easy to set up yourself.  Below is my /bin/cygwin_setup:

#! /bin/sh
dir="/"
url="http://www.cygwin.com/setup.exe";

cygwin_setup="${dir}$(basename "${url}")"

cd "${dir}"
wget -N "${url}"
chmod 755 -c "${cygwin_setup}"

cygstart "${cygwin_setup}" --no-shortcuts ${@}

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]