core/swift53Action/swiftbuild.py [29:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def eprint(*args, **kwargs):
    print(*args, file=sys.stderr, **kwargs)

def sources(launcher, source_dir, main):
    actiondir = "%s/Sources" % source_dir
    # copy the launcher fixing the main
    dst = "%s/main.swift" % actiondir
    with codecs.open(dst, 'a', 'utf-8') as d:
        with codecs.open(launcher, 'r', 'utf-8') as e:
            code = e.read()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/swift57Action/swiftbuild.py [29:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def eprint(*args, **kwargs):
    print(*args, file=sys.stderr, **kwargs)

def sources(launcher, source_dir, main):
    actiondir = "%s/Sources" % source_dir
    # copy the launcher fixing the main
    dst = "%s/main.swift" % actiondir
    with codecs.open(dst, 'a', 'utf-8') as d:
        with codecs.open(launcher, 'r', 'utf-8') as e:
            code = e.read()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



