Skip to content

Commit ccf3be9

Browse files
author
Michael O'Brien
committed
FIX: building on windows
1 parent 80e009c commit ccf3be9

39 files changed

+1106
-1074
lines changed

.local.mk

Lines changed: 0 additions & 34 deletions
This file was deleted.

pak.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ejscript",
33
"description": "Embedthis Ejscript Javascript Language",
44
"title": "Embedthis Ejscript",
5-
"version": "2.7.6",
5+
"version": "2.7.7",
66
"keywords": [
77
"ejs",
88
"ejscript",

paks/assist/blend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function clone(src) {
2323
return result
2424
}
2525

26-
export default function blend(dest, src, combine = '') {
26+
export function blend(dest, src, combine = '') {
2727
if (!src) {
2828
return dest
2929
}

paks/assist/build-parts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ function buildParts() {
2828
if [ -f gulpfile.ts ] ; then
2929
gulp build $*
3030
elif [ -f main.me ] ; then
31-
me $*
31+
me
3232
elif [ -f Makefile ] ; then
33-
make $*
33+
make
3434
fi
3535
[ $? != 0 ] && exit 2
3636
cd ..

paks/assist/docker-deploy-elb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ getHost() {
109109
checkTargets() {
110110
local arn targets tcount
111111
allTargets=$(aws ec2 describe-instances \
112-
--filter "Name=tag:aws:autoscaling:groupName,Values=[${AWS_PROXY}]" --output text \
112+
--filter "Name=tag:aws:autoscaling:groupName,Values=${AWS_PROXY}" --output text \
113113
--query 'Reservations[].Instances[].InstanceId')
114114
if [ $? != 0 ] ; then
115115
echo "Cannot describe instances"

paks/assist/docker-deploy-instance

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ getTargets() {
2828
local arn targets tcount tag value
2929
tag="${DEPLOY_TAG/=*}"
3030
value="${DEPLOY_TAG/*=}"
31-
aws ec2 describe-instances --filter "Name=tag:${tag},Values=[${value}]" \
31+
aws ec2 describe-instances --filter "Name=tag:${tag},Values=${value}" \
3232
--output text --query 'Reservations[].Instances[].InstanceId'
3333
if [ $? != 0 ] ; then
3434
echo "Cannot describe instances"

paks/assist/docker-publish

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ else
1111
VERSION=$(pak --dir .. edit version)
1212
fi
1313

14+
1415
while [[ $# -gt 0 ]] ; do
1516
arg="$1"
1617
case ${arg} in

paks/assist/gulp/website/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as gulp from 'gulp'
66
import * as log from 'fancy-log'
77
import clean from './clean'
88
import config from 'assist'
9-
import blend from 'assist/blend'
9+
import {blend} from 'assist/blend'
1010
import render from './render'
1111
import patch from './patch'
1212
import publish from './publish'

paks/assist/gulp/website/init.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ global.print = (...args) => console.log(...args)
77
let path = process.env.NODE_PATH
88
if (!path || path.indexOf('paks') < 0) {
99
process.env.NODE_PATH = [
10-
global.top + '/paks',
1110
global.top + '/../paks',
1211
global.top + '/node_modules'
1312
].join(':')

paks/assist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as fs from 'fs'
66
import * as json5 from 'json5'
77
import * as gulp from 'gulp'
88
import * as log from 'fancy-log'
9-
import blend from './blend'
9+
import {blend} from './blend'
1010

1111
/*
1212
Polyfills

0 commit comments

Comments
 (0)