summaryrefslogtreecommitdiff
path: root/bin/sqitch
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sqitch')
-rwxr-xr-xbin/sqitch13
1 files changed, 2 insertions, 11 deletions
diff --git a/bin/sqitch b/bin/sqitch
index 750e5d23..6b844a4a 100755
--- a/bin/sqitch
+++ b/bin/sqitch
@@ -1,15 +1,6 @@
#!perl -w -CAS
-our $VERSION = 'v1.4.0'; # VERSION
-use POSIX qw(setlocale);
-BEGIN {
- if ($^O eq 'MSWin32') {
- require Win32::Locale;
- setlocale POSIX::LC_ALL, Win32::Locale::get_locale();
- } else {
- setlocale POSIX::LC_ALL, '';
- }
-}
+our $VERSION = 'v1.4.1'; # VERSION
+use locale;
use App::Sqitch;
-
exit App::Sqitch->go;