mirror of https://git.tuxpa.in/a/code-server.git
15 lines
658 B
JavaScript
15 lines
658 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
fs.copyFileSync(
|
|
path.join('node_modules', 'vscode-codicons', 'dist', 'codicon.css'),
|
|
path.join('media', 'codicon.css'));
|
|
|
|
fs.copyFileSync(
|
|
path.join('node_modules', 'vscode-codicons', 'dist', 'codicon.ttf'),
|
|
path.join('media', 'codicon.ttf'));
|